home *** CD-ROM | disk | FTP | other *** search
- #include <LPeriodical.h>
-
- class CPhoneControlDoc;
-
- class CPeriodicImport : public LPeriodical {
- public:
- CPeriodicImport(CPhoneControlDoc* inImporter, unsigned long inStartAt, unsigned long inRepeatInSecs);
- virtual ~CPeriodicImport() {};
-
- virtual void SpendTime(const EventRecord&);
-
- private:
- CPhoneControlDoc* mImporter;
- unsigned long mNextImport, mRepeatInSecs;
- };
-
-